/*@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #1a1717;
}

button {
  outline: 0;
}

.active-category.film .film {
  background-color: #eb0048 !important;
}

.active-category.film .item-sub-category {
  color: #eb0048;
}

.active-category.film .item-sub-category .nav-link {
  color: #eb0048;
}

.active-category.film .span::after {
  background-color: #eb0048 !important;
}

.active-category.photo .photo {
  background-color: #89d000 !important;
}

.active-category.photo .item-sub-category {
  color: #89d000;
}

.active-category.photo .item-sub-category .nav-link {
  color: #89d000;
}

.active-category.photo .span::after {
  background-color: #89d000 !important;
}

.active-category.design .design {
  background-color: #00a8ff !important;
}

.active-category.design .item-sub-category {
  color: #00a8ff;
}

.active-category.design .item-sub-category .nav-link {
  color: #00a8ff;
}

.active-category.design .span::after {
  background-color: #00a8ff !important;
}

.active-category.sustained .sustained {
  background-color: #ff7800 !important;
}

.active-category.sustained .item-sub-category {
  color: #ff7800;
}

.active-category.sustained .item-sub-category .nav-link {
  color: #ff7800;
}

.active-category.sustained .span::after {
  background-color: #ff7800 !important;
}

.film:hover {
  background-color: #eb0048 !important;
}

.film:hover .item-sub-category {
  color: #eb0048 !important;
}

.film:hover .item-sub-category .nav-link {
  color: #eb0048 !important;
}

.film:hover .span::after {
  background-color: #eb0048 !important;
}

.photo:hover {
  background-color: #89d000 !important;
}

.photo:hover .item-sub-category {
  color: #89d000 !important;
}

.photo:hover .item-sub-category .nav-link {
  color: #89d000 !important;
}

.photo:hover .span::after {
  background-color: #89d000 !important;
}

.design:hover {
  background-color: #00a8ff !important;
}

.design:hover .item-sub-category {
  color: #00a8ff !important;
}

.design:hover .item-sub-category .nav-link {
  color: #00a8ff !important;
}

.design:hover .span::after {
  background-color: #00a8ff !important;
}

.sustained:hover {
  background-color: #ff7800 !important;
}

.sustained:hover .item-sub-category {
  color: #ff7800 !important;
}

.sustained:hover .item-sub-category .nav-link {
  color: #ff7800 !important;
}

.sustained:hover .span::after {
  background-color: #ff7800 !important;
}

header {
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  width: 100vw;
  z-index: 12;
  top: 0;
  background-color: #ededed;
  padding: 0 6px;
}

header h1 {
  margin: 0;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 25px;
}

header a {
  color: #1a1717;
  text-decoration: none;
}

header a:hover {
  color: #1a1717;
}

header .burger-icon {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

header .burger-icon span {
  position: relative;
  width: 26px;
  height: 3px;
  border-radius: 2.5rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1a1717;
}

header .burger-icon span::before, header .burger-icon span::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  height: 3px;
  width: 100%;
  background-color: #1a1717;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

header .burger-icon span::before {
  top: 7px;
}

header .burger-icon span::after {
  top: -7px;
}

header .active span {
  background-color: transparent;
}

header .active span::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header .active span::after {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

body {
  background-color: #ededed;
  font-family: 'Roboto', sans-serif;
  overflow-y: overlay;
}

body::-webkit-scrollbar {
  width: 6px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body::-webkit-scrollbar-thumb {
  background-color: #00000020;
  outline: 0;
  border-radius: 10px;
  border: 1.5px solid #ededed;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.scroll-bg::-webkit-scrollbar-thumb {
  background-color: #00000090;
}

main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 84px);
  margin: 42px;
}

.main-content {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #1a1717;
}

aside {
  background-color: #272727;
  width: 0;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: fixed;
  top: 42px;
  right: 42px;
  z-index: 9;
  overflow: hidden;
}

.aside-show {
  width: 260px;
}

.aside-show-2 {
  width: 280px;
}

.show-sub-aside-category {
  right: 0 !important;
}

.main-nav {
  background-color: #272727;
  height: 80px;
}

.main-nav .nav {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border: 0;
}

.main-nav .nav .nav-item {
  width: 100%;
  height: 40px;
  text-align: center;
  line-height: 40px;
  z-index: 1;
}

.main-nav .nav .nav-item:hover {
  z-index: 2;
}

.main-nav .nav .nav-item:hover .item-sub-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-nav .nav .nav-link {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 0;
  border: 0;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: #fff;
  -webkit-transition: all 0s;
  transition: all 0s;
  z-index: 8;
  outline: 0;
  background-color: transparent;
}

.main-nav .nav .span {
  position: relative;
}

.main-nav .nav .span::after {
  content: "";
  width: 16px;
  height: 16px;
  bottom: -6px;
  z-index: 10;
  background-color: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0s;
  transition: all 0s;
  position: absolute;
  left: calc(50% - 5px);
}

.main-nav .item-sub-category {
  width: 100%;
  color: #fff;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 5;
  display: none;
  text-align: center;
  background-color: #2e2e2e;
}

.main-nav .active-category .item-sub-category {
  display: flex;
}

.main-nav .item-sub-category .nav-link {
  font-weight: 300;
}

.main-nav .item-sub-category li {
  width: 100%;
  height: 40px;
  font-size: 18px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-weight: 300;
}

.main-nav .item-sub-category li:hover {
  font-weight: 500;
}

.main-nav .item-sub-category li:hover .nav-link {
  font-weight: 500;
}

.main-nav .item-sub-category .active {
  font-weight: 500;
}

.main-nav .item-sub-category a {
  color: inherit;
}

.media-content {
  width: 100%;
  height: calc(100% - 80px);
  background-color: #1a1717;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  opacity: 1;
}

.media-content .tab-content {
  height: 100%;
}

.media-content .tab-pane {
  height: 100%;
}

.media-content .carousel {
  height: 100%;
}

.media-content .carousel-inner {
  height: 100%;
}

.media-content .carousel-item {
  height: 100%;
}

.move-media-content {
  right: 260px !important;
}

.move-media-content-2 {
  right: 280px !important;
}

.aside-menu {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 20px;
  margin-top: 42px;
  position: relative;
  text-align: left;
  min-width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-bottom-color: #000 !important;
}

.aside-menu .film-aside:hover {
  background-color: #eb0048;
}

.aside-menu .film-aside .nav-link, .aside-menu .film-aside .active {
  color: #eb0048;
}

.aside-menu .design-aside:hover {
  background-color: #00a8ff;
}

.aside-menu .design-aside .nav-link, .aside-menu .design-aside .active {
  color: #00a8ff;
}

.aside-menu .sustained-aside:hover {
  background-color: #ff7800;
}

.aside-menu .sustained-aside .nav-link, .aside-menu .sustained-aside .active {
  color: #ff7800;
}

.aside-menu .photo-aside:hover {
  background-color: #89d000;
}

.aside-menu .photo-aside .nav-link, .aside-menu .photo-aside .active {
  color: #89d000;
}


.aside-menu .item-has-children .pr-link {
  position: relative;
  padding: 0px 30px;
  cursor: pointer;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.aside-menu .item-has-children .pr-link::after {
  /* content: "";
  display: block;
  width: 12px;
  height: 12px;
  color: #fff;
  border-bottom: 2px solid;
  border-right: 2px solid;
  position: absolute;
  top: 18px;
  right: 25px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); */
}

/* burger menu */
.aside-menu .item-has-children .burger-menu-item-container {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}

.aside-menu .item-has-children .burger-menu-item-container .pr-link {
  flex: 0 0 auto;
  max-width: 100%;
  width: 80%;
}

.aside-menu .item-has-children .burger-menu-item-container .submenu-button {
  flex: 0 0 auto;
  max-width: 100%;
  width: 20%;
  border: none;
  background: transparent;
  box-shadow: none;
  border-left: 1px solid #404040;
}

.aside-menu .item-has-children .burger-menu-item-container .submenu-button::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  color: #fff;
  border-bottom: 2px solid;
  border-right: 2px solid;
  position: absolute;
  top: 8px;
  right: 25px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}


.aside-menu li {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.aside-menu li:hover .pr-link {
  color: #6e6e6e;
  font-weight: 500;
}

.aside-menu li:hover .pr-link::after {
  color: #6e6e6e;
}

.aside-menu a, .aside-menu .back {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 20px;
  border: 0 !important;
  background-color: transparent;
  text-align: left;
  padding: 0;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.aside-menu a:focus, .aside-menu a:hover, .aside-menu .back:focus, .aside-menu .back:hover {
  border: 0 !important;
  outline: 0 !important;
}

.aside-menu .active {
  border: 0 !important;
  outline: 0;
  background-color: transparent !important;
  color: inherit;
  font-weight: 500;
}

.aside-menu .active:focus, .aside-menu .active:hover {
  border: 0 !important;
  outline: 0 !important;
}

.aside-menu .back {
  background-color: #1a1717;
  position: relative;
  letter-spacing: 3px;
  color: #6e6e6e !important;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.aside-menu .back:hover {
  font-weight: 500;
}

.aside-menu .back::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  color: #6e6e6e;
  border-bottom: 1px solid;
  border-right: 1px solid;
  position: absolute;
  left: 14px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.aside-menu .sub-aside-category {
  position: absolute;
  right: -260px;
  top: -42px;
  z-index: 2;
  width: 93%;
  height: 100vh;
  background-color: #2e2e2e;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.aside-menu .sub-aside-category li {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 0px 30px;
  cursor: pointer;
}

.aside-menu .sub-aside-category li:hover a {
  font-weight: 500;
}

.slider-controles {
  position: absolute;
  left: -42px;
  color: #1a1717;
  font-size: 40px;
  width: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
  top: 50%;
  -webkit-transform: translateY(-80%);
          transform: translateY(-80%);
  height: -webkit-max-content !important;
  height: -moz-max-content !important;
  height: max-content !important;
}

.carousel-indicators {
  position: absolute;
  left: unset;
  right: -42px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  z-index: 2;
}

.carousel-indicators span {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  border: 0 !important;
  margin: 6px auto;
  background-color: #cacaca !important;
  cursor: pointer;
}

.carousel-indicators .active {
  background-color: #1a1717 !important;
}

footer {
  min-height: 42px;
  padding: 0 42px;
  position: fixed;
  width: 100vw;
  bottom: 0;
  background: #ededed;
  z-index: 12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .scroll-icon {
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  cursor: pointer;
}

footer .nav-link {
  padding: 0;
  border: 0;
  outline: 0;
  color: inherit;
  -webkit-transition: 0s;
  transition: 0s;
}

footer .nav-link:focus {
  color: inherit;
}

footer a:hover {
  color: #939393;
}

footer ul li {
  padding: 2px 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
}

footer ul li:hover {
  border-color: #939393;
}

footer .footer-links {
  font-size: 11px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

footer .footer-links a {
  padding: 5px 10px;
}

footer .footer-links a:hover {
  color: inherit;
}

.content-container {
  background-color: #1a1717;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 100%;
  opacity: 0;
  -webkit-animation: leave-fade-animate;
          animation: leave-fade-animate;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes leave-fade-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes leave-fade-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sub-content-container {
  background-color: #1a1717;
  position: relative;
  top: 0;
  right: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  height: 100%;
}

.carousel-inner {
  position: relative;
  right: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.carousel-item {
  background-color: #1a1717;
}

.carousel-item .fade {
  -webkit-animation: video-animate-fade;
          animation: video-animate-fade;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes video-animate-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes video-animate-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.video-cover {
  position: relative;
  height: 100%;
  width: 100%;
  text-align: center;
}

.video-cover .rsPlayBtn {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-transition: .3s;
  transition: .3s;
  border: 0;
  outline: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 26px;
}

.video-cover .rsPlayBtn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.video-cover .rsPlayBtn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}

.video-cover img {
  width: calc(100vw - 84px);
  height: calc(100vh + 160px);
  margin-top: -160px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  object-fit: cover;
}

.video-cover .cover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

.video-cover .cover-content h1 {
  font-size: 40px;
  font-weight: 300;
}

.video-cover .description {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 18px;
  width: 100%;
}

.video-cover .description-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video-cover .description-btns button {
  background: #414141;
  margin-right: 1px;
  padding: 0 12px;
  color: #fff;
  border: 0;
  outline: 0;
  height: 42px;
  font-weight: 300;
}

.video-cover .description-btns i {
  font-size: 20px;
  padding-left: 15px;
}

.video-cover .description-content {
  margin-top: 1px;
  background: #414141;
  color: white;
  line-height: 1.8;
  text-align: left;
  font-size: 18px;
  font-weight: 300;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

.video-cover .description-content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video-cover .description-content .title {
  min-width: 103px;
  font-weight: 500;
  margin-right: 14px;
}

.carousel-video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #141414;
}

.carousel-video .rsCloseVideoBtn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 32px;
  height: 32px;
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: #000;
}

.carousel-video .rsCloseVideoBtn svg {
  width: 14px;
  fill: #fff;
}

.carousel-video .rsCloseVideoBtn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}

.carousel-video .video {
  position: absolute;
  height: 100%;
  width: 90%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.gallery-video-items {
  width: 100%;
  padding-bottom: 42px;
  background-color: #1a1717;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: start;
}

.gallery-video-items .item {
  width: calc(100% / 5);
  background-color: #141414;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 50px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.gallery-video-items .item:hover .mosaic_meta {
  background-color: rgba(0, 0, 0, 0.8);
  color: #939393;
}

.gallery-video-items .item:hover .mosaic_meta .video_caption {
  display: block;
}

.gallery-video-items img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-animation: video-animate-item;
          animation: video-animate-item;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.gallery-video-items .mosaic_meta {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  text-align: center;
  font-weight: 300;
}

.gallery-video-items .mosaic_meta .video_caption {
  display: none;
}

.gallery-video-items .mosaic_meta .meta_icon {
  font-weight: 500;
}

@-webkit-keyframes video-animate-item {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes video-animate-item {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.gallery-plat {
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}

.gallery-plat .gallery-container {
  height: 100%;
  padding: 50px 0;
}

.gallery-plat .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 24px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  text-transform: lowercase;
  font-family: "Open Sans", sans-serif;
  opacity: 0.6;
  line-height: 1;
}

.gallery-plat .close-btn:hover {
  opacity: 1;
  background-color: #1a1717;
}

.gallery-plat .video {
  height: 100%;
  width: 71%;
  margin: 0 auto;
}

.gallery-plat .description {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 18px;
  width: 100%;
  z-index: 2;
}

.gallery-plat .description-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gallery-plat .description-btns i {
  font-size: 20px;
  padding-left: 15px;
}

.gallery-plat .description-btns button {
  background: #414141;
  margin-right: 1px;
  padding: 0 12px;
  color: #fff;
  border: 0;
  outline: 0;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 300;
}

.gallery-plat .description-btns .format {
  font-weight: 300;
}

.gallery-plat .description-btns .title {
  font-weight: 500;
}

.gallery-plat .description-content {
  margin-top: 1px;
  background: #414141;
  color: white;
  line-height: 1.8;
  text-align: left;
  font-size: 18px;
  font-weight: 300;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

.gallery-plat .description-content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gallery-plat .description-content .description-item {
  min-width: 103px;
  font-weight: 500;
  margin-right: 14px;
}

.gallery-plat .gallery-slider-controles .arrow-btn {
  width: 45px;
  height: 45px;
  border: 3px solid #fff;
  position: absolute;
  top: calc(53% - 22.5px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  cursor: pointer;
}

.gallery-plat .gallery-slider-controles .prev-btn {
  left: 5.1%;
  border-top-color: transparent;
  border-right-color: transparent;
}

.gallery-plat .gallery-slider-controles .prev-btn:hover {
  border-bottom-color: #939393;
  border-left-color: #939393;
}

.gallery-plat .gallery-slider-controles .next-btn {
  right: 5.1%;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.gallery-plat .gallery-slider-controles .next-btn:hover {
  border-top-color: #939393;
  border-right-color: #939393;
}

.gallery-photo-container .image {
  width: 70%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-photo-container .image img {
  max-width: 100% !important;
  height: auto !important;
  max-height: 100% !important;
}

.gallery-photo-container .image-title {
  background: #414141;
  margin-right: 1px;
  padding: 0 12px;
  color: #fff;
  border: 0;
  outline: 0;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.grid-item {
  width: calc(100% / 5);
}

.gallery-photo-items {
  position: relative;
  width: 100%;
  padding-bottom: 42px;
  background-color: #1a1717;
}

.gallery-photo-items .item {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  overflow: hidden;
}

.gallery-photo-items .item img {
  width: 100%;
  opacity: 0;
  -webkit-animation: video-animate-item;
          animation: video-animate-item;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.gallery-photo-items .item:hover::after {
  background-color: rgba(0, 0, 0, 0.8);
}

.gallery-photo-items .item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
}

.gallery-photo-items .item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
  left: 0;
}

.photo-layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
}

.photo-layer .icon {
  color: #939393;
  font-size: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.social-links-icon .social-icons {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #738a8d;
  width: 0;
  opacity: 0;
}

.social-links-icon:hover .social-icons {
  opacity: 1;
  width: 210px;
}

.social-links-icon:hover .share-icon {
  background-color: #1a1717;
}

.social-links-icon .share-icon {
  background-color: #141414;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.social-links-icon .share-icon, .social-links-icon li {
  width: 42px;
  height: 42px;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.social-links-icon a {
  color: inherit;
}

article {
  padding: 0 24px 65px;
  font-size: 16px;
  background-color: #fff;
  font-weight: 300;
  position: relative;
  min-height: 100%;
  opacity: 0;
  -webkit-animation: leave-fade-animate;
          animation: leave-fade-animate;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

article iframe {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

article .social-links-icon {
  justify-content: end;
}

article .social-links-icon ul li {
  width: 0;
  height: 0;
}

article .social-links-icon:hover ul li {
  width: 42px;
  height: 42px;
}

article .social-links-icon ul {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

article .social-links-icon a {
  color: #fff !important;
}

article .social-links-icon a:hover {
  color: #fff !important;
}

article .social-links-icon .share-icon {
  font-size: 14px;
  color: #212521;
  background-color: transparent;
}

article .social-links-icon .share-icon:hover {
  color: #fff !important;
}

article .social-links-icon:hover .share-icon {
  color: #fff !important;
}

article h1 {
  padding: 5px 10px;
  color: #fff;
  background-color: #ff7800;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-block;
}

article h2, article h4 {
  color: #ff9900;
  font-size: 15px;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-weight: bold;
}

article h3 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

article h4 {
  text-transform: uppercase;
}

article strong, article b {
  font-weight: 500;
  color: #000000;
}

article a {
  font-weight: 500;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  color: #878787 !important;
}

article a:hover {
  color: #939393 !important;
}

article p {
  margin-bottom: 0;
}

article ul {
  padding-left: 50px;
  margin-bottom: 1.5rem;
}

article li {
  list-style-type: disc;
}

.privacy-page h1 {
  text-transform: capitalize;
  background-color: #454545;
}

.privacy-page h2 {
  font-size: 24px;
  color: #000;
  margin-bottom: 2.25rem;
}

.title-2 {
  text-transform: capitalize;
  background-color: #454545;
}

.left--42 {
  left: -42px !important;
}

.spinner-container {
  position: fixed;
  height: 100vh;
  background: #ffffff90;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 8;
  top: 0;
  left: 0;
}

.spinner-container .spinner-border {
  border-width: 0.3em;
}

@media only screen and (max-width: 1700px) {
  .grid-item {
    width: calc(100% / 4);
  }
  .gallery-video-items .item {
    width: calc(100% / 4);
  }
}

@media only screen and (max-width: 1250px) {
  .grid-item {
    width: calc(100% / 3);
  }
  .gallery-video-items .item {
    width: calc(100% / 3);
  }
}

@media only screen and (max-width: 1100px) {
  .grid-item {
    width: calc(100% / 3);
  }
  .gallery-photo-container .image {
    display: -ms-grid;
    display: grid;
    place-items: center;
  }
  .gallery-photo-container .image img {
    width: inherit;
    height: auto;
  }
}

@media only screen and (max-width: 900px) {
  body {
    overflow-y: auto;
    overflow-x: hidden;
  }
  main {
    height: 100%;
    margin: 42px 0 0;
  }
  header {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  aside {
    right: 0;
  }
  .main-nav {
    display: none;
  }
  .carousel-indicators {
    right: 0;
  }
  .slider-controles {
    left: 0;
    z-index: 1;
    color: #fff;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .video-cover img {
    margin-top: 0;
    width: calc(100vw + 84px);
    height: calc(100vh - 84px);
  }
  .grid-item {
    width: calc(100% / 2);
  }
  .gallery-video-items .item {
    width: calc(100% / 2);
  }
  .gallery-video-items,
  .gallery-photo-items {
    padding-bottom: 0;
    min-height: calc(100vh - 84px);
  }
  footer {
    position: relative;
    padding: 0 5px;
  }
  footer .move-links {
    padding-right: 31px;
  }
}

@media only screen and (max-width: 450px) {
  footer .footer-links a {
    padding: 5px 7px;
  }
}

.overflow-x-clip {
  overflow-x: clip !important;
}

.slider-controles, .arrow-next {
  -webkit-appearance: none;
}

article section .cookie-video-embed {
  margin: 1rem 0;
}


article section iframe {
  width: 100%;
  height: 100% !important;
  position: absolute;
  top: 0;
}

.main-nav {
  display: none;
}

@media(min-width: 992px) {
  .main-nav {
    display: block;
  }

  .burger-icon {
    display: none !important;
  }
}

/*# sourceMappingURL=main.css.map */